| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | /** |
||
| 13 | constructor (suffixe = null) { |
||
| 14 | super('Pattern not matching with suffixe: ' + suffixe) |
||
| 15 | /** |
||
| 16 | * The suffixe that doesn't match |
||
| 17 | * @type {string} |
||
| 18 | * @name InvalidPatternException#suffixe |
||
| 19 | * @readonly |
||
| 20 | */ |
||
| 21 | this.suffixe = suffixe |
||
| 22 | /** |
||
| 23 | * The fisherCode |
||
| 24 | * @readonly |
||
| 25 | * @constant |
||
| 26 | * @name InvalidPatternException#code |
||
| 27 | * @type {number} |
||
| 28 | * @default 303 |
||
| 29 | */ |
||
| 30 | this.code = 303 |
||
| 31 | } |
||
| 32 | } |
||
| 34 |